how to convert int to char in c#

78

how to convert int to char in c# -

int i = 65;
char c = Convert.ToChar(i);

Comments

Submit
0 Comments